/* vc may now be invalid! */
}
- tmp_list = g_slist_next (tmp_list);
+ tmp_list = tmp_list->next;
}
g_slist_free (copy);
&child_req, NULL);
}
- tmp_list = g_slist_next (tmp_list);
+ tmp_list = tmp_list->next;
}
/* Cache the requested size of the text view so we can
gtk_widget_size_allocate (child->widget, &allocation);
}
- tmp_list = g_slist_next (tmp_list);
+ tmp_list = tmp_list->next;
}
}
if (child->anchor)
gtk_text_view_update_child_allocation (text_view, child);
- tmp_list = g_slist_next (tmp_list);
+ tmp_list = tmp_list->next;
}
}
break;
}
- tmp = g_slist_next (tmp);
+ tmp = tmp->next;
}
g_slist_free (tags);
if (vc->widget == child)
break;
- iter = g_slist_next (iter);
+ iter = iter->next;
}
g_assert (iter != NULL); /* be sure we had the child in the list */
(* callback) (vc->widget, callback_data);
- iter = g_slist_next (iter);
+ iter = iter->next;
}
g_slist_free (copy);
/* vc may now be invalid! */
}
- tmp_list = g_slist_next (tmp_list);
+ tmp_list = tmp_list->next;
}
}
}
/* vc may now be invalid! */
}
- tmp_list = g_slist_next (tmp_list);
+ tmp_list = tmp_list->next;
}
gtk_text_view_stop_cursor_blink (text_view);
atoms = gtk_text_buffer_get_deserialize_formats (buffer, &n_atoms);
- for (list = gdk_drag_context_list_targets (context); list; list = g_list_next (list))
+ for (list = gdk_drag_context_list_targets (context); list; list = list->next)
{
gint i;
if (child_dx != 0 || child_dy != 0)
adjust_allocation (child->widget, child_dx, child_dy);
- tmp_list = g_slist_next (tmp_list);
+ tmp_list = tmp_list->next;
}
}
{
GtkTargetPair *pair = list->data;
- list = g_list_next (list); /* get next element before removing */
+ list = list->next; /* get next element before removing */
if (pair->info >= GTK_TEXT_BUFFER_TARGET_INFO_TEXT &&
pair->info <= GTK_TEXT_BUFFER_TARGET_INFO_BUFFER_CONTENTS)
}
}
- for (list = buffer_list->list; list; list = g_list_next (list))
+ for (list = buffer_list->list; list; list = list->next)
{
GtkTargetPair *pair = list->data;